home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _2DC84BCE931B425BA84459DA7918BA67 < prev    next >
Encoding:
Text File  |  2006-08-04  |  845 b   |  33 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for Sculpture effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Sculpture():
  14.     return {
  15.         'Angle': 315,
  16.         'Color': (255, 255, 255),
  17.         'Intensity': 50,
  18.     'PatternName': u'',
  19.         'Shininess': 0,
  20.         'GeneralSettings': {
  21.             'AutoActionMode': 0,
  22.             'ExecutionMode': 0
  23.             },
  24.         'Depth': 20,
  25.         'Ambience': 0,
  26.         'Elevation': 30,
  27.         'Smoothness': 0,
  28.         'Size': 100
  29.         }
  30.  
  31. def Do(Environment):
  32.     App.Do( Environment, 'Sculpture', Preset_Sculpture())
  33.